/* Content */

.title {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 50px;
  text-align: center;
  color: #6702a1;
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.input-container input[type=number] {
  padding: 6px;
  font-size: 20px;
  border: none;
  width: 150px;
  height: 50px;
}

.input-container button {
  background: black;
  color: white;
  width: 120px;
  height: 50px;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
}

.input-container button:hover {
    background-color: red;
    color: #fff;
}

.subtitle {
  color: #3f1515;
  font-size: 30px;
  margin: 0;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.fullButton {
  border-radius: 12px;
  background-color: white;
  color: #3f1515;
  padding: 15px 50px;
  border: none;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
}

.fullButton::before {
      content: "VIEW FULL SCREEN";
  }
  
.fullButton:hover {
     background-color: #000000;
    color: #fff;
}

.buttonPos{
  text-align: center;
  margin-top: 20px;
}

#pdfContainer {
  width: 60%;
  height: 1000px; 
  position: relative;
  overflow: hidden;
  margin: auto;
}

#pdfViewer {
  width: 100%;
  height: 100%;
  border: none;
  transform-origin: top left; 
}

@media (max-width: 768px) {
  #pdfContainer {
      height: 60vh;
      width: 80%;
      display: none;
  }

  .input-container input[type=number] {
    font-size: 11px;
    width: 100px;
    height: 20px;
  }
  
  .input-container button {
    font-size: 11px;
    height: 20px;
    width: 60px;
  }

  .title {
    font-size: 20px;
    margin: 20px 0;
  }

  .subtitle {
    font-size: 20px;
    margin: 20px 0;
  }

  .fullButton{
    padding: 8px 25px;
    border-radius: 6px;
    font-size: 10px;
  }
  
  .fullButton::before {
      content: "DOWNLOAD PDF";
  }
}